/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-blue: #161853;
  --bg-pink: #eb265a;
  --bg-white: #fff;
  --bg-light-white: #fcfcfc;
  --bg-light-2: #f2f7fa;
  --bg-features: #ddf5fc;
  --bg-features-2: #fff6d6;
  --bg-features-3: #dcf6e8;

  /* Text Colors */
  --text-black: #000;
  --text-white: #fff;
  --text-dark-grey: #4c535d;
  --text-pink: #eb265a;
  --text-light-2: #798089;
  --text-light-3: #5e5e72;

  /* Fonts */
  --primary-font: Quicksand;
  --secondary-font: "Poppins", sans-serif;
  --normal-font-weight: 400;
  --bold-font-weight: 700;
}

body {
  font-family: var(--primary-font);
  font-weight: var(--normal-font-weight);
  background-color: var(--bg-white);
}

.learn-more-btn {
  background-color: var(--bg-blue);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white) !important;
  padding: 12px 29px !important;
  border-radius: 10px;
  border: 2px solid var(--bg-blue);
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  display: inline-block;
  text-decoration: none;
  transition: 0.7s;
}

.btn-extra-header {
  color: var(--text-dark-grey) !important;
  background-color: transparent;
  border: 2px solid var(--text-dark-grey);
}

/* Navbar */
.header_wrapper .navbar {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.header_wrapper .navbar-brand img {
  max-width: 210px;
  height: auto;
}

.header_wrapper .menu-navbar-nav {
  width: 70%;
  display: flex;
  justify-content: center;
}

.header_wrapper .nav-item {
  margin: 0 10px;
}

.header_wrapper .nav-item .nav-link {
  font-weight: var(--bold-font-weight);
  font-size: 18px;
  color: var(--bg-blue);
  line-height: 1;
}

.header_wrapper .nav-item .nav-link:hover {
  color: var(--text-pink);
}

.header-scrolled {
  position: fixed;
  margin-top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background: var(--bg-white);
  -webkit-box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
  box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}

.header-scrolled .navbar-brand img {
  width: 150px;
  height: auto;
  animation: animated 0, 1s ease-in-out;
}

@keyframes animated {
  0% {
    width: 210px;
  }

  50% {
    width: 200px;
  }

  100% {
    width: 190px;
  }
}

.header-scrolled .nav-item .nav-link {
  font-size: 17px;
}

/* Home */
.home_wrapper {
  display: flex;
  width: 100%;
  padding: 100px 0 125px;
  background: url(../image/bg.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.home_wrapper .home-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--text-black);
}

.home_wrapper .home-title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--text-black);
}

.home_wrapper .home-title span {
  color: var(--text-pink);
}

.home_wrapper .home-title-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 500px;
  color: var(--text-light-2);
}

.home_wrapper .learn-more-btn-section {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
}

.home_wrapper .header-img-section img {
  width: 100%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Client */
.client {
  padding: 80px 0 50px;
  background: var(--bg-light-2);
}

.client h2 {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 25px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 40px;
  color: var(--text-light-2);
}

.client-slider-section .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.client-slider-section img {
  width: auto !important;
  height: 50px;
  object-fit: cover;
  justify-content: center;
  filter: grayscale(1);
  transition: 0.5s ease-in-out;
}

.client-slider-section img:hover {
  transform: scale(1.1);
  filter: none;
}

/* About */
.about_wrapper {
  padding: 100px 0 0;
  display: flex;
  width: 100%;
  background: url(../image/bg_footer.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.about_wrapper .about-number {
  text-align: center;
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 15px;
  padding: 4px 17px;
  border-radius: 10px;
  margin-bottom: 25px;
  max-width: 150px;
  color: var(--text-white);
  background-color: var(--bg-pink);
}

.about_wrapper .about-title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  max-width: 1000px;
  margin-bottom: 25px;
  color: var(--text-black);
}

.about_wrapper .about-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  max-width: 700px;
  color: var(--text-light-2);
}

.about_wrapper .header-img-section-2 img {
  width: 100%;
  animation: float 5s ease-in-out infinite;
  margin-bottom: 50px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Services */
.services_wrapper {
  padding: 100px 0 80px;
  background-color: var(--bg-light-2);
}

.services_wrapper .services-subtitle {
  text-align: center;
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 15px;
  padding: 4px 17px;
  margin-inline: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  max-width: 150px;
  color: var(--text-white);
  background-color: var(--bg-pink);
}

.services_wrapper .services-title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}

.services_wrapper .services-title span {
  color: var(--text-pink);
}

.services_wrapper .services-subtitle-2 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
}

.services_wrapper h3 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
}

.services_wrapper .services-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

/* ft-1 */
.services_wrapper .ft-1 {
  background: var(--bg-features);
  padding: 40px;
  border-radius: 15px;
}

.services_wrapper .ft-1::before {
  content: url(../image/website.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-2 */
.services_wrapper .ft-2 {
  background: var(--bg-features-2);
  padding: 40px;
  border-radius: 15px;
}

.services_wrapper .ft-2::before {
  content: url(../image/flexible.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-3 */
.services_wrapper .ft-3 {
  background: var(--bg-features-3);
  padding: 40px;
  border-radius: 15px;
}

.services_wrapper .ft-3::before {
  content: url(../image/vector1.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-4 */
.services_wrapper .ft-4 {
  background: var(--bg-features-2);
  padding: 40px;
  border-radius: 15px;
}

.services_wrapper .ft-4::before {
  content: url(../image/mobile.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-5 */
.services_wrapper .ft-5 {
  background: var(--bg-features-3);
  padding: 40px;
  border-radius: 15px;
}

.services_wrapper .ft-5::before {
  content: url(../image/ui-ux.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-6 */
.services_wrapper .ft-6 {
  background: var(--bg-features);
  padding: 40px;
  border-radius: 15px;
}

.services_wrapper .ft-6::before {
  content: url(../image/coding.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* Portfolio */
.portfolio_wrapper {
  padding: 100px 0 80px;
  background-color: var(--bg-light-2);
}

.portfolio_wrapper .portfolio-subtitle {
  text-align: center;
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 15px;
  padding: 4px 17px;
  margin-inline: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  max-width: 150px;
  color: var(--text-white);
  background-color: var(--bg-pink);
}

.portfolio_wrapper .portfolio-title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}

.portfolio_wrapper .portfolio-title span {
  color: var(--text-pink);
}

.portfolio_wrapper .portfolio-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
}

.portfolio_wrapper .card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.portfolio_wrapper .card img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}

.card .overlay {
  height: 0;
  width: 100%;
  background: linear-gradient(transparent, #161853 58%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  transition: height 0.5s;
}

.card .overlay h3 {
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 20%;
  font-family: var(--primary-font);
  color: var(--text-white);
  font-size: 20px;
  letter-spacing: 2px;
}

.card .overlay a {
  font-weight: 600;
  margin-top: 10px;
  color: var(--text-black);
  text-decoration: none;
  font-size: 14px;
  background: var(--bg-white);
  border-radius: 50px;
  text-align: center;
  padding: 5px 15px;
  transition: 0.5s ease-in-out;
}

.card .overlay a:hover {
  background: var(--bg-pink);
  color: var(--text-white);
}

.card .overlay p {
  color: var(--text-white);
  font-size: 12px;
  margin-bottom: 5px;
}

.cardLhover img {
  transform: scale(1.2);
}

.card:hover .overlay {
  height: 100%;
}

/* FAQs */
.faqs_wrapper {
  padding: 100px 0 0;
  /* display: flex;
  width: 100%;
  background: url(../image/bg_footer.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center; */
}

.faqs_wrapper .faqs-subtitle {
  text-align: center;
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 15px;
  padding: 4px 17px;
  margin-inline: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  max-width: 150px;
  color: var(--text-white);
  background-color: var(--bg-pink);
}

.faqs_wrapper .faqs-title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}

.faqs_wrapper .faqs-title span {
  color: var(--text-pink);
}

.faqs_wrapper .faqs-subtitle-2 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
}

.faqs_wrapper .accordion-button:hover,
.faqs_wrapper .accordion-button:focus {
  box-shadow: none;
  color: var(--text-pink);
}

.faqs_wrapper .accordion-item {
  border: 0;
}

.faqs_wrapper .accordion-button {
  font-size: 21px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: var(--text-black);
  background: var(--bg-white);
  border-radius: 0;
  padding: 0 0 15px 0;
  border-bottom: 0px solid var(--text-light-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.faqs_wrapper .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  background-image: none;
}

.faqs_wrapper .accordion-button:not(.collapsed):after {
  content: "\2212";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  display: inline-block;
  background-image: none;
  transform: unset;
}

.faqs_wrapper .accordion-body {
  color: var(--text-black);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 25px;
  line-height: 1.5;
}

.faqs_wrapper .header-img-section-3 img {
  margin-bottom: 50px;
}

/* Contact */
.contact_wrapper {
  padding: 100px 0 0;
  display: flex;
  width: 100%;
  background: url(../image/bg_footer.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.contact_wrapper .contact-subtitle {
  text-align: center;
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 15px;
  padding: 4px 17px;
  margin-inline: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  max-width: 150px;
  color: var(--text-white);
  background-color: var(--bg-pink);
}

.contact_wrapper .contact-title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
  color: var(--text-black);
}

.contact_wrapper .contact-title span {
  color: var(--text-pink);
}

.contact_wrapper .contact-subtitle-2 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
}

.contact_wrapper .card {
  border-radius: 10px;
  border: 0;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.contact_wrapper .card i {
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
  font-size: 35px;
  color: var(--text-pink);
}

.contact_wrapper .card .card-title {
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin-top: 10px;
}

.contact_wrapper .card .card-text {
  margin-bottom: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
}

.contact_wrapper iframe {
  width: 100%;
  height: 450px;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.contact_wrapper .contact-form form {
  background-color: var(--bg-white);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  border-radius: 10px;
  padding: 33px 33px;
}

/* Footer */

.footer_wrapper {
  margin-bottom: -25px;
  padding: 100px 0 25px;
  background: url(../image/bg_footer.png) no-repeat;
  background-size: cover;
  background-color: var(--bg-blue);
  color: var(--text-white);
}

/* .footer_wrapper .footer_logo {
  background-color: var(--bg-white);
} */

.footer_wrapper .footer_logo img {
  max-width: 35%;
}

.footer_wrapper .footer-text,
.footer-text a {
  margin-top: 30px;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.footer_wrapper .footer-title {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-white);
  margin-bottom: 25px;
}

.footer_wrapper .footer-media-sosial-icon {
  padding: 20px;
  color: var(--text-white);
  font-size: 20px;
}

.footer_wrapper .footer-credit {
  color: var(--text-white);
  border-top: 1px solid var(--text-white);
  padding-top: 20px;
  margin-top: 20px;
}

.footer_wrapper .footer-credit a {
  color: var(--text-pink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--bg-light-2);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bg-blue);
}

/* Hanndel Hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bg-blue);
}

/* Produk */
.produk_wrapper {
  display: flex;
  width: 100%;
  padding: 100px 0 125px;
  background: url(../image/bg.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.produk_wrapper h2 {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--text-light-2);
}

.produk_wrapper p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--text-light-2);
}

.produk_wrapper form {
  margin-bottom: 40px;
}

.produk_wrapper .card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.produk_wrapper .card i {
  font-size: 20px;
  position: absolute;
  /* padding: 80px 170px; */
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* Tentang */
.tentang_wrapper {
  display: flex;
  width: 100%;
  padding: 100px 0 125px;
  background: url(../image/bg.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.tentang_wrapper h2 {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--text-light-2);
}

.tentang_wrapper .tentang-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  max-width: 700px;
  color: var(--text-light-2);
}

/* layanan */
.layanan_wrapper {
  display: flex;
  width: 100%;
  padding: 100px 0 125px;
  background: url(../image/bg.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.layanan_wrapper h2 {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--text-light-2);
}

.layanan_wrapper .layanan-subtitle-2 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
  margin-bottom: 100px;
}

.layanan_wrapper h3 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
}

.layanan_wrapper .layanan-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

/* ft-1 */
.layanan_wrapper .ft-1 {
  background: var(--bg-features);
  padding: 40px;
  border-radius: 15px;
}

.layanan_wrapper .ft-1::before {
  content: url(../image/website.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-2 */
.layanan_wrapper .ft-2 {
  background: var(--bg-features-2);
  padding: 40px;
  border-radius: 15px;
}

.layanan_wrapper .ft-2::before {
  content: url(../image/flexible.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-3 */
.layanan_wrapper .ft-3 {
  background: var(--bg-features-3);
  padding: 40px;
  border-radius: 15px;
}

.layanan_wrapper .ft-3::before {
  content: url(../image/vector1.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-4 */
.layanan_wrapper .ft-4 {
  background: var(--bg-features-2);
  padding: 40px;
  border-radius: 15px;
}

.layanan_wrapper .ft-4::before {
  content: url(../image/mobile.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-5 */
.layanan_wrapper .ft-5 {
  background: var(--bg-features-3);
  padding: 40px;
  border-radius: 15px;
}

.layanan_wrapper .ft-5::before {
  content: url(../image/ui-ux.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* ft-6 */
.layanan_wrapper .ft-6 {
  background: var(--bg-features);
  padding: 40px;
  border-radius: 15px;
}

.layanan_wrapper .ft-6::before {
  content: url(../image/coding.png);
  position: absolute;
  display: block;
  margin-top: -70px;
}

/* Faq */
.faq_wrapper {
  display: flex;
  width: 100%;
  padding: 100px 0 125px;
  background: url(../image/bg.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.faq_wrapper h2 {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--text-light-2);
}

.faq_wrapper .faq-subtitle-2 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
  margin-bottom: 50px;
}

.faq_wrapper .header-img-section-3 img {
  margin-bottom: 50px;
}

.faq_wrapper .accordion-button:hover,
.faq_wrapper .accordion-button:focus {
  box-shadow: none;
  color: var(--text-pink);
}

.faq_wrapper .accordion-item {
  border: 0;
  background-color: transparent;
}

.faq_wrapper .accordion-button {
  font-size: 21px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: var(--text-black);
  background: transparent;
  border-radius: 0;
  padding: 0 0 15px 0;
  border-bottom: 0px solid var(--text-light-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.faq_wrapper .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  background-image: none;
}

.faq_wrapper .accordion-button:not(.collapsed):after {
  content: "\2212";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  display: inline-block;
  background-image: none;
  transform: unset;
}

.faq_wrapper .accordion-body {
  color: var(--text-black);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 25px;
  line-height: 1.5;
}

.faq_wrapper .header-img-section-3 img {
  margin-bottom: 50px;
}

/* Port */
.port_wrapper {
  display: flex;
  width: 100%;
  padding: 100px 0 125px;
  background: url(../image/bg.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.port_wrapper h2 {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--text-light-2);
}

.port_wrapper .port-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light-2);
  margin-bottom: 50px;
}

.port_wrapper .card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.port_wrapper .card img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}